projects
/
cargo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f1beaf
)
Remove unused type aliases
author
Seo Sanghyeon
<sanxiyn@gmail.com>
Tue, 15 Nov 2016 12:49:41 +0000
(21:49 +0900)
committer
Seo Sanghyeon
<sanxiyn@gmail.com>
Tue, 15 Nov 2016 12:49:41 +0000
(21:49 +0900)
src/cargo/core/resolver/mod.rs
patch
|
blob
|
history
diff --git
a/src/cargo/core/resolver/mod.rs
b/src/cargo/core/resolver/mod.rs
index 9cc723d69dc90e747255626018bd22637d94fe7a..fab8934bc6ac4fbfd997f8a6c160a9a450e66831 100644
(file)
--- a/
src/cargo/core/resolver/mod.rs
+++ b/
src/cargo/core/resolver/mod.rs
@@
-98,11
+98,6
@@
pub enum Method<'a> {
},
}
-// Err(..) == standard transient error (e.g. I/O error)
-// Ok(Err(..)) == resolve error, but is human readable
-// Ok(Ok(..)) == success in resolving
-type ResolveResult<'a> = CargoResult<CargoResult<Box<Context<'a>>>>;
-
// Information about the dependencies for a crate, a tuple of:
//
// (dependency info, candidates, features activated)